html, body {height:100%; margin:0; padding:0;}
#page-background {position:fixed; top:0; left:0; width:100%; height:100%;}
#content {position:relative; z-index:1; padding:0px;}

* {
  box-sizing: border-box;
}

body {   
    color: var(--ColorBody); 
    background-color: var(--ColorBGBody); 
    height:1400px;   
    font-family: "Calibri Light", sans-serif;
    font-size: 18px;
} 

.title {
  color: var(--ColorTitle); 
  background-color: var(--ColorBGTitle);    
  font-family: "Segoe Print", sans-serif;
  font-family: 'Handlee', cursive;
}

.footer {
  background-color: var(--ColorBGFooter);    
  padding: 15px;
  width: 100%;
}

.logo {
   width:100%;
   height:100%;
   align:center;
   object-fit: cover;
   object-position: 50% 50%;
   text-align: center;
}

table, th, td {
  border: 0px solid white;
}

th, td, tr {
  padding: 0px;
}

.hide {
  display: none;
}

.top {
  vertical-align: top;
}

a {
  color: var(--ColorLinks);
}

.WhiteLink {
  color: var(--ColorLinks);
}

.parent {
  position: relative;
  top: 0;
  left: 0;
}

.home {
  position: fixed;
  top: 30px;
  left: 30px;
  border: 0px green solid;
}

.ImgContainer {
  text-align: center;
}

.imgPortrait {
  float: right;
}

#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#overlaytext{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

